*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}


/***************************************************************************************** HEADER ************************************************************************/
.custom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, #0b1c68, #36cc81);
    color: white;
    padding: 10px 20px;
}

.logo-img {
    height: 80px;
    width: auto;
}

.whatsapp-btn {
    background-color: #25D366;
    border: none;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    background-color: #1ebd5d;
    color: white;
}

.whatsapp-btn i {
    font-size: 18px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }

    .whatsapp-btn {
        font-size: 14px;
        padding: 6px 10px;
    }

    .whatsapp-btn i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
    }

    .whatsapp-btn {
        font-size: 13px;
        padding: 5px 8px;
        gap: 4px;
    }

    .whatsapp-btn i {
        font-size: 14px;
    }
}



/********************************************************************************** SLIDER-SECTION  *********************************************************************/

.icon-slider-container {
    font-family: Arial, sans-serif;
    padding: 40px 20px;
    background-color: #fff;
    position: relative;
    padding-top: 200px;
}

@media (max-width: 768px) {
    .icon-slider-container {
        padding-top: 145px;
    }
}


.splide {
    margin: auto;
    max-width: 1200px;
    position: relative;
}

.splide__slide {
    text-align: center;
}

.icon-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.icon-img:hover {
    transform: scale(1.05);
}

.icon-label {
    font-size: 14px;
    color: #333;
    margin-top: 8px;
    font-weight: 500;
}

/* Remove old Instagram hover effect */
.splide__slide:hover::after {
    content: none !important;
}

/* Splide Arrows Styling */
.splide__arrow {
    background-color: #333;
    color: #fff;
    opacity: 0.8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.splide__arrow--prev {
    left: -20px;
}

.splide__arrow--next {
    right: -20px;
}

.splide__arrow:hover {
    background-color: #555;
    opacity: 1;
}

/* Arrow Icons */
.splide__arrow::before {
    content: '';
    display: inline-block;
    width: 0.6rem;
    height: 0.6rem;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
}

.splide__arrow--prev::before {
    transform: rotate(-135deg);
}

/* Responsive */
@media (max-width: 768px) {
    .icon-img {
        width: 60px;
        height: 60px;
    }

    .icon-label {
        font-size: 13px;
    }

    .splide__arrow {
        width: 32px;
        height: 32px;
    }

    .splide__arrow--prev {
        left: -15px;
    }

    .splide__arrow--next {
        right: -15px;
    }
}

@media (max-width: 480px) {
    .icon-img {
        width: 50px;
        height: 50px;
    }

    .icon-label {
        font-size: 12px;
    }

    .splide__arrow {
        width: 28px;
        height: 28px;
    }

    .splide__arrow--prev {
        left: -10px;
    }

    .splide__arrow--next {
        right: -10px;
    }
}



/***************************************************************************** BRAND SECTION *************************************************************************/

.brand-section {
    padding: 60px 20px;
    text-align: center;
}

.brand-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.brand-section h5 {
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.brand-section .divider {
    width: 100px;
    height: 1px;
    background-color: #ccc;
    margin: 30px auto;
}


.brand-card-wrapper {
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    justify-items: center;
}


@media (max-width: 600px) {
    .brand-card-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow-y: auto;
        max-height: 100vh;
        padding: 20px;
        gap: 20px;
    }
}




/* BRAND LOGO CARD */
.brand-logo {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 100px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.brand-logo img {
    max-height: 50px;
    max-width: 100px;
    object-fit: contain;
}


/* RESPONSIVE HEADINGS */
@media (max-width: 768px) {
    .brand-section h1 {
        font-size: 1.8rem;
    }
}



/************************************************************************FORM-SECTION ******************************************************************************/
.iframe-container {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
  
.iframe-container iframe {
    width: 100%;
    min-height: 900px;
    border: 0;
}
  



/**************************************************************************** FOOTER ********************************************************************************/

.footer {
    background-color: #000;
    color: #ccc;
    padding: 40px 20px 20px;
}

.footer h6 {
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.footer h6::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 30px;
    height: 2px;
    background-color: white;
}

.footer a {
    color: #ccc;
    text-decoration: underline;
}

.footer .contact-box {
    border: 1px solid #fff;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.footer .contact-box i {
    font-size: 18px;
}

.footer .email-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #444;
    text-align: center;
    padding-top: 10px;
    font-size: 14px;
}

/* Mobile-specific styles */
@media (max-width: 767px) {
    .footer .col-md-3 {
        margin-bottom: 30px;
        text-align: left;
    }

    .footer .contact-box {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer .email-center {
        flex-direction: row;
        justify-content: center;
        text-align: center;
    }

    .iframe-container iframe {
        min-height: 1150px;
    }
}
